home *** CD-ROM | disk | FTP | other *** search
/ How Would You Survive? / How Would You Survive (1995)(Grolier)[Mac-PC].iso / pc / shared.dir / 02000_Script_2000 < prev   
Text File  |  1995-09-13  |  318b  |  14 lines

  1. on doIT startC,endC
  2.   set CountMe = startC
  3.   repeat while CountMe <= endC 
  4.     set theFile = the fileName of cast CountMe
  5.     if (not(theFile = "")) then
  6.       erase cast CountMe
  7.       importFileInto cast CountMe, theFile 
  8.     else
  9.       --beep 1
  10.     end if
  11.     set CountMe = CountMe + 1
  12.   end repeat
  13. end
  14.